home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / sys.h < prev    next >
C/C++ Source or Header  |  1991-09-08  |  3KB  |  102 lines

  1. /*
  2.  * sys.h --
  3.  *
  4.  *     User-level definitions of routines and types for the sys module.
  5.  *
  6.  * Copyright 1986, 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  * $Header: /sprite/src/lib/include/RCS/sys.h,v 1.11 91/09/01 01:57:20 dlong Exp $ SPRITE (Berkeley)
  16.  *
  17.  */
  18.  
  19. #ifndef _SYSUSER
  20. #define _SYSUSER
  21.  
  22. #ifndef _SPRITE
  23. #include <sprite.h>
  24. #endif
  25.  
  26. typedef enum {
  27.     SYS_WARNING,
  28.     SYS_FATAL
  29. } Sys_PanicLevel;
  30.  
  31. /*
  32.  * Flags for Sys_Shutdown.
  33.  *
  34.  *    SYS_REBOOT         Reboot the system. 
  35.  *    SYS_HALT           Halt the system.
  36.  *    SYS_KILL_PROCESSES Kill all processes.
  37.  *    SYS_DEBUG         Enter the debugger.
  38.  *    SYS_WRITE_BACK     Write back the cache after killing all processes but
  39.  *             obviously before halting or rebooting.
  40.  */
  41.  
  42. #define SYS_REBOOT              0x01
  43. #define SYS_HALT                0x02
  44. #define    SYS_KILL_PROCESSES    0x04
  45. #define    SYS_DEBUG        0x08
  46. #define    SYS_WRITE_BACK        0x10
  47.  
  48. /*
  49.  * Structure that is filled in by Sys_GetMachineInfo.
  50.  */
  51.  
  52.  
  53. /*
  54.  * Machine architecture and type values from Sys_GetMachineInfo().
  55.  */
  56.  
  57. typedef struct {
  58.     int architecture;        /* machine architecture */
  59.     int type;            /* machine type */
  60.     int    processors;        /* number of processors */
  61. } Sys_MachineInfo;
  62.  
  63. #define SYS_SPUR        1
  64. #define SYS_SUN2        2
  65. #define SYS_SUN3        3
  66. #define SYS_SUN4        4
  67. #define SYS_MICROVAX_2        5
  68. #define SYS_DS3100        6   /* DecStation 3100 */
  69. #define SYS_SYM                 7   /* Sequent symmetry */
  70. #define SYS_DS5000              8   /* DecStation 5000 */
  71.  
  72. #define SYS_SUN_ARCH_MASK    0xf0
  73. #define    SYS_SUN_IMPL_MASK    0x0f
  74.  
  75. #define    SYS_SUN_2        0x00
  76. #define    SYS_SUN_3        0x10
  77. #define    SYS_SUN_4        0x20
  78. #define    SYS_SUN_4_C        0x50
  79.  
  80. #define SYS_SUN_2_50        0x02
  81. #define SYS_SUN_2_120        0x01
  82. #define SYS_SUN_2_160        0x02
  83. #define SYS_SUN_3_75        0x11
  84. #define SYS_SUN_3_160        0x11
  85. #define SYS_SUN_3_50        0x12
  86. #define    SYS_SUN_3_60        0x17
  87. #define    SYS_SUN_4_200        0x21
  88. #define    SYS_SUN_4_260        0x21
  89. #define    SYS_SUN_4_110        0x22
  90. #define    SYS_SUN_4_330        0x23
  91. #define    SYS_SUN_4_460        0x24
  92. #define    SYS_SUN_4_470        0x24
  93. #define    SYS_SUN_4_C_60        0x51
  94. #define    SYS_SUN_4_C_40        0x52
  95. #define    SYS_SUN_4_C_65        0x53
  96. #define    SYS_SUN_4_C_20        0x54
  97. #define    SYS_SUN_4_C_75        0x55
  98.  
  99. extern ReturnStatus        Sys_GetMachineInfo();
  100.  
  101. #endif /* _SYSUSER */
  102.